home *** CD-ROM | disk | FTP | other *** search
/ Windows 6-Pak - Disc 5 / Windows 6-Pak (InfoMagic) (Disc 5) (1999).ISO / C&C++Tools / sbparser.exe / cppb / PlotTest.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-07-01  |  1.5 KB  |  55 lines

  1. //---------------------------------------------------------------------------
  2. #ifndef PlotTestH
  3. #define PlotTestH
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <StdCtrls.hpp>
  8. #include <Forms.hpp>
  9. #include <ExtCtrls.hpp>
  10. //---------------------------------------------------------------------------
  11. class TFPlotTest : public TForm
  12. {
  13. __published:    // Komponenten, die von der IDE verwaltet werden
  14.     TPanel *PRight;
  15.     TPanel *PBottom;
  16.     TLabel *LtheTime;
  17.     TLabel *Lsec;
  18.     TLabel *LcTime;
  19.     TButton *BExit;
  20.     TPanel *PFRight;
  21.     TPanel *PFTop;
  22.     TPanel *PPlot;
  23.     TPaintBox *PBPlot;
  24.     TGroupBox *GBSpeedTest;
  25.     TPanel *Panel1;
  26.     TPanel *PILeft;
  27.     TLabel *LFunction;
  28.     TMemo *MFunction;
  29.     TPanel *PFBottom;
  30.     TPanel *Panel2;
  31.     TButton *BRedraw;
  32.     TMemo *MInfo;
  33.     TLabel *LcTime0;
  34.     TLabel *Lsec0;
  35.     TLabel *LtheTime0;
  36.     void __fastcall BExitClick(TObject *Sender);
  37.     void __fastcall PBPlotPaint(TObject *Sender);
  38.     void __fastcall FormShow(TObject *Sender);
  39.     
  40.     
  41.     
  42.     void __fastcall BRedrawClick(TObject *Sender);
  43.     
  44.     
  45. private:    // Benutzerdeklarationen
  46.     void PlotFunction(TPaintBox *thePBPlot);
  47.  
  48. public:        // Benutzerdeklarationen
  49.     __fastcall TFPlotTest(TComponent* Owner);
  50. };
  51. //---------------------------------------------------------------------------
  52. extern PACKAGE TFPlotTest *FPlotTest;
  53. //---------------------------------------------------------------------------
  54. #endif
  55.